﻿/* دوران وتكبير الصورة */
.rotating-3d {
    perspective: 5000px;
    display: inline-block;
}

    .rotating-3d img {
        transform-style: preserve-3d;
        animation: spinY 4s linear infinite;
        width: 300px;
        height: auto;
    }

/* ستايل الطباعة */
@media print {
    body * {
        visibility: hidden;
    }

    .table-responsive, .table-responsive * {
        visibility: visible;
    }

    .table-responsive {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    /* إخفاء أزرار الإجراءات عند الطباعة */
    .no-print,
    .no-print *,
    .btn-edit,
    .btn-delete,
    .btn-image,
    nav,
    .navbar,
    .sidebar {
        display: none !important;
    }
    /* إخفاء الأعمدة الأخيرة (الإجراءات) */
    th:last-child,
    td:last-child {
        display: none !important;
    }
}

/* ستايل موحد للأزرار - لا يؤثر على navbar */
.btn-custom {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: none;
}

    .btn-custom:hover {
        color: white;
        text-decoration: none;
    }

/* شريط البحث */
.search-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

#searchInput {
    max-width: 300px;
    border-radius: 8px;
    padding: 6px 10px;
    border: 1px solid #ccc;
}

/* صورة طفاية الحريق */
.fire-extinguisher-img {
    max-width: 180px;
    height: auto;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
    .search-bar-buttons {
        flex-direction: column;
    }

    .fire-extinguisher-img {
        margin: 10px auto;
    }
}
